home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
i
/
imagefxv2.1a.lha
/
ImageFX
/
Rexx
/
AutoFX
/
AutoFX.ifx.pre
< prev
next >
Wrap
Text File
|
1996-03-02
|
454b
|
30 lines
/*
* AutoFX.ifx.pre
* Written by Thomas Krehbiel
*
* Called before AutoFX begins any processing. May be used to turn off
* redraw or undo to speed things up a bit.
*
* Inputs:
* None.
*
* Returns:
* 0 if successful, non-zero on failure
*
*/
OPTIONS RESULTS
GetMain
IF rc = 0 THEN DO
RequestResponse 'Buffer will be destroyed. Continue?'
IF rc ~= 0 THEN EXIT rc
KillBuffer Force
Redraw
END
Redraw Off
Undo Off
EXIT